type net/http.http2ErrCode

42 uses

	net/http (current package)
		h2_bundle.go#L1340: type http2ErrCode uint32
		h2_bundle.go#L1343: 	http2ErrCodeNo                 http2ErrCode = 0x0
		h2_bundle.go#L1344: 	http2ErrCodeProtocol           http2ErrCode = 0x1
		h2_bundle.go#L1345: 	http2ErrCodeInternal           http2ErrCode = 0x2
		h2_bundle.go#L1346: 	http2ErrCodeFlowControl        http2ErrCode = 0x3
		h2_bundle.go#L1347: 	http2ErrCodeSettingsTimeout    http2ErrCode = 0x4
		h2_bundle.go#L1348: 	http2ErrCodeStreamClosed       http2ErrCode = 0x5
		h2_bundle.go#L1349: 	http2ErrCodeFrameSize          http2ErrCode = 0x6
		h2_bundle.go#L1350: 	http2ErrCodeRefusedStream      http2ErrCode = 0x7
		h2_bundle.go#L1351: 	http2ErrCodeCancel             http2ErrCode = 0x8
		h2_bundle.go#L1352: 	http2ErrCodeCompression        http2ErrCode = 0x9
		h2_bundle.go#L1353: 	http2ErrCodeConnect            http2ErrCode = 0xa
		h2_bundle.go#L1354: 	http2ErrCodeEnhanceYourCalm    http2ErrCode = 0xb
		h2_bundle.go#L1355: 	http2ErrCodeInadequateSecurity http2ErrCode = 0xc
		h2_bundle.go#L1356: 	http2ErrCodeHTTP11Required     http2ErrCode = 0xd
		h2_bundle.go#L1359: var http2errCodeName = map[http2ErrCode]string{
		h2_bundle.go#L1376: func (e http2ErrCode) String() string {
		h2_bundle.go#L1383: func (e http2ErrCode) stringToken() string {
		h2_bundle.go#L1392: type http2ConnectionError http2ErrCode
		h2_bundle.go#L1395: 	return fmt.Sprintf("connection error: %s", http2ErrCode(e))
		h2_bundle.go#L1402: 	Code     http2ErrCode
		h2_bundle.go#L1411: func http2streamError(id uint32, code http2ErrCode) http2StreamError {
		h2_bundle.go#L1439: 	Code   http2ErrCode // the ConnectionError error code
		h2_bundle.go#L2106: func (fr *http2Framer) connError(code http2ErrCode, reason string) error {
		h2_bundle.go#L2460: 	ErrCode      http2ErrCode
		h2_bundle.go#L2485: 		ErrCode:          http2ErrCode(binary.BigEndian.Uint32(p[4:8])),
		h2_bundle.go#L2490: func (f *http2Framer) WriteGoAway(maxStreamID uint32, code http2ErrCode, debugData []byte) error {
		h2_bundle.go#L2782: 	ErrCode http2ErrCode
		h2_bundle.go#L2794: 	return &http2RSTStreamFrame{fh, http2ErrCode(binary.BigEndian.Uint32(p[:4]))}, nil
		h2_bundle.go#L2801: func (f *http2Framer) WriteRSTStream(streamID uint32, code http2ErrCode) error {
		h2_bundle.go#L4626: func (sc *http2serverConn) rejectConn(err http2ErrCode, debug string) {
		h2_bundle.go#L4687: 	goAwayCode                  http2ErrCode
		h2_bundle.go#L5551: func (sc *http2serverConn) goAway(code http2ErrCode) {
		h2_bundle.go#L5626: 		sc.goAway(http2ErrCode(ev))
		h2_bundle.go#L7429: 	var code http2ErrCode
		h2_bundle.go#L7433: 		code = http2ErrCode(e)
		h2_bundle.go#L7436: 		code = http2ErrCode(e.Code)
		h2_bundle.go#L9815: 		cc.fr.WriteGoAway(0, http2ErrCode(ce), nil)
		h2_bundle.go#L9824: 	ErrCode      http2ErrCode
		h2_bundle.go#L9905: 		errCode := http2ErrCode(ce)
		h2_bundle.go#L10744: func (cc *http2ClientConn) writeStreamReset(streamID uint32, code http2ErrCode, ping bool, err error) {
		h2_bundle.go#L11070: 	code        http2ErrCode